home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / nd.dir / 00011.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  588 b   |  19 lines

  1. on nextLocation
  2.   global mapflag, locationCast, storeTotal, mapCast
  3.   if mapflag > 0 then
  4.     set x to locationCast - 1
  5.     if (mapCast - x) > storeTotal then
  6.       set locationCast to mapCast - 1
  7.     else
  8.       set locationCast to x
  9.     end if
  10.     if the castType of cast locationCast = #text then
  11.       set storeNumber to mapCast - locationCast
  12.       set ButtonText to "Store" && storeNumber && "of" && storeTotal
  13.       set the text of cast "nextButton" to ButtonText
  14.       set the text of cast "storeLocation" to the text of cast locationCast
  15.     end if
  16.     updateStage()
  17.   end if
  18. end
  19.